From 4e50343b9c89249391e46a4df313eb74f7600c11 Mon Sep 17 00:00:00 2001 From: "cl349@freefall.cl.cam.ac.uk" Date: Sun, 1 Aug 2004 14:10:39 +0000 Subject: [PATCH] bitkeeper revision 1.1108.46.1 (410cf9dfstlSCa_bUdWkb4grJVzBxg) PF_USEDFPU -> TS_USEDFPU --- linux-2.6.7-xen-sparse/include/asm-xen/asm-i386/xor.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linux-2.6.7-xen-sparse/include/asm-xen/asm-i386/xor.h b/linux-2.6.7-xen-sparse/include/asm-xen/asm-i386/xor.h index fe2608c60c..79a45debc6 100644 --- a/linux-2.6.7-xen-sparse/include/asm-xen/asm-i386/xor.h +++ b/linux-2.6.7-xen-sparse/include/asm-xen/asm-i386/xor.h @@ -535,7 +535,7 @@ static struct xor_block_template xor_block_p5_mmx = { #define XMMS_SAVE do { \ preempt_disable(); \ - if (!(current->flags & PF_USEDFPU)) \ + if (!(current_thread_info()->status & TS_USEDFPU)) \ clts(); \ __asm__ __volatile__ ( \ "movups %%xmm0,(%1) ;\n\t" \ @@ -557,7 +557,7 @@ static struct xor_block_template xor_block_p5_mmx = { : \ : "r" (cr0), "r" (xmm_save) \ : "memory"); \ - if (!(current->flags & PF_USEDFPU)) \ + if (!(current_thread_info()->status & TS_USEDFPU)) \ stts(); \ preempt_enable(); \ } while(0) -- 2.30.2